home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / FREENET / CARPENTER / SFTP041R / !sFTP / Scripts / test
Text File  |  1997-06-08  |  626b  |  28 lines

  1. ;
  2. ; An example scripted session for automatic use of sFTP
  3. ;
  4. ;
  5. ;
  6. ; Turn off syslogging (can also be done by providing the command line switch -V
  7. debug 0
  8. ; Login to Deltanet running on my local machine
  9. open localhost
  10. ; login as the user anonymous
  11. anonymous
  12. ; supply password (our email address)
  13. carol@nocturnal.demon.co.uk
  14. ; set the remote directory to jump to
  15. cd /pub
  16. ; set the local directory to download to
  17. lcd $.temp
  18. ; open the downloads directory
  19. downloads
  20. ; turn off confirmation of overwrites
  21. prompt
  22. ; turn off server messages
  23. ;verbose
  24. ; get all the files in the current remote directory
  25. mget * -a
  26. ; end the session
  27. quit
  28.